next
Round
Technologies
Coding Problems
Bookmarks
Learning Paths
Login
next
Round
Technologies
Coding Problems
Bookmarks
Learning Paths
Login
Questions
38 of 38
1
What is the Iterator Protocol in JavaScript? What two things must an object implement to be a valid iterator?
2
What is the difference between an iterable and an iterator? Can something be both?
3
What built-in JavaScript data structures are iterable by default? How does for...of work under the hood with them?
4
What does Symbol.iterator do? How would you make a plain object iterable from scratch?
5
What is a 'lazy' iterator and why is it important for performance? Give a practical example.
6
How would you implement an infinite iterator (e.g., an infinite counter)? How do you safely consume it?
7
What happens if you forget to return { done: true } in a custom iterator? What are the consequences?
8
How would you implement a reusable iterable (one that can be iterated multiple times)?
9
Can you chain or compose custom iterators? Implement a map and filter for a custom iterator without converting to an array.
10
What is a generator function? How is it different from a regular function in terms of execution flow?
11
Explain what yield does. What does calling .next() return before and after a yield?
12
What is the difference between yield and return inside a generator?
13
What does yield* do? How is it different from a regular yield?
14
Can you pass a value into a generator using .next(value)? How does that work and what is the practical use case?
15
Explain generator.return(value) and generator.throw(error). When would you use each in production?
16
What happens to a try/finally block inside a generator when .return() is called externally?
17
How do generators handle errors? How does .throw() interact with try/catch inside a generator?
18
Are generators lazy? How do they differ from eager evaluation with arrays in terms of memory and performance?
19
What is the difference between a regular iterator and an async iterator? What protocol does an async iterator follow?
20
What does Symbol.asyncIterator do? How does for await...of use it?
21
Implement an async generator that fetches paginated API data, yielding one page at a time:
22
What are the pitfalls of using for await...of with an async generator that makes network calls? How do you handle errors and cancellation?
23
How would you implement a readable stream as an async iterable in Node.js?
24
How would you use a generator to implement redux-saga-style side effect management? What makes generators a good fit for this?
25
How can generators be used to implement coroutines or cooperative multitasking in JavaScript?
26
Implement a take(n) utility that takes the first n values from any iterable — including infinite ones:
27
When would you choose a generator over returning an array? What are the memory trade-offs?
28
In a data pipeline processing millions of records, how would you use generators to avoid loading everything into memory?
29
What are the debugging challenges with generators (e.g., in stack traces and async flows)? How do you mitigate them?
30
How do generators compose? Implement a pipeline of generator-based transformations (like RxJS operators but synchronous).
31
What are the limitations of generators? What problems are they not a good fit for?
32
What are Iterator Helpers (.map(), .filter(), .take(), .drop() on iterators natively)? What stage are they at in the TC39 proposal pipeline?
33
How does Array.from() use the iterator protocol? What's the difference between passing an iterable vs an array-like object?
34
How do Map, Set, Array, and String expose their iterators? Are they the same object or different?
35
What is the difference between map.keys(), map.values(), and map.entries()? What do they return?
36
How does destructuring and spread (...) use the iterator protocol internally?
37
How would you implement Promise-based async/await using generators and a runner function? (This is essentially how Babel transpiled async/await early on.)
38
How would you use a generator to implement a tree traversal (DFS) without recursion stack concerns?
javascript
Basics
Engine
JIT
V8
Event Loop and Runtime
Concurrency and Threading
Bytecode and Parsing
Execution Context
Data Types
Functions
String Operations
Array Operations
this
Call Apply Bind
Closure
Objects
ES6 Classes
Events
ES6
Promises
Iterator and Generator
Error Handling
Web Workers
PWA
Web Sockets
Web Assembly
Garbage Collector
Modules
Browser APIS
Functional Programming
Currying
Higher Order Functions
Memoisation
Security
Code
Polyfills
Questions
All Topics
A-
Reset
A+
38 / 38
How would you use a generator to implement a tree traversal (DFS) without recursion stack concerns?